home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / phones_1 / frmhowto.frm (.txt) < prev    next >
Visual Basic Form  |  1997-03-13  |  4KB  |  126 lines

  1. VERSION 4.00
  2. Begin VB.Form frmHowTo 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H00C0C0C0&
  5.    BorderStyle     =   3  'Fixed Dialog
  6.    Caption         =   "How To Play"
  7.    ClientHeight    =   2265
  8.    ClientLeft      =   1920
  9.    ClientTop       =   3615
  10.    ClientWidth     =   5775
  11.    BeginProperty Font 
  12.       name            =   "MS Sans Serif"
  13.       charset         =   0
  14.       weight          =   700
  15.       size            =   8.25
  16.       underline       =   0   'False
  17.       italic          =   0   'False
  18.       strikethrough   =   0   'False
  19.    EndProperty
  20.    ForeColor       =   &H80000008&
  21.    Height          =   2670
  22.    Left            =   1860
  23.    LinkTopic       =   "Form1"
  24.    MaxButton       =   0   'False
  25.    MinButton       =   0   'False
  26.    ScaleHeight     =   2265
  27.    ScaleWidth      =   5775
  28.    Top             =   3270
  29.    Width           =   5895
  30.    Begin VB.CommandButton cmdOK 
  31.       Appearance      =   0  'Flat
  32.       BackColor       =   &H80000005&
  33.       Caption         =   "OK"
  34.       Height          =   375
  35.       Left            =   2256
  36.       TabIndex        =   3
  37.       Top             =   1848
  38.       Width           =   1275
  39.    End
  40.    Begin VB.Label Label3 
  41.       Appearance      =   0  'Flat
  42.       BackColor       =   &H80000005&
  43.       BackStyle       =   0  'Transparent
  44.       Caption         =   "Press the LEFT and RIGHT ARROW keys to move your ship, and the SPACE BAR to fire your lasers."
  45.       ForeColor       =   &H80000008&
  46.       Height          =   444
  47.       Left            =   48
  48.       TabIndex        =   2
  49.       Top             =   1440
  50.       Width           =   5676
  51.    End
  52.    Begin VB.Label Label2 
  53.       Alignment       =   2  'Center
  54.       Appearance      =   0  'Flat
  55.       BackColor       =   &H80000005&
  56.       BackStyle       =   0  'Transparent
  57.       Caption         =   "BAD GUYS"
  58.       ForeColor       =   &H80000008&
  59.       Height          =   204
  60.       Left            =   2928
  61.       TabIndex        =   1
  62.       Top             =   72
  63.       Width           =   1236
  64.    End
  65.    Begin VB.Label Label1 
  66.       Alignment       =   2  'Center
  67.       Appearance      =   0  'Flat
  68.       BackColor       =   &H80000005&
  69.       BackStyle       =   0  'Transparent
  70.       Caption         =   "YOU"
  71.       ForeColor       =   &H80000008&
  72.       Height          =   204
  73.       Left            =   1800
  74.       TabIndex        =   0
  75.       Top             =   72
  76.       Width           =   804
  77.    End
  78.    Begin VB.Shape Shape2 
  79.       BorderWidth     =   2
  80.       Height          =   996
  81.       Left            =   2928
  82.       Top             =   336
  83.       Width           =   1188
  84.    End
  85.    Begin VB.Shape Shape1 
  86.       BorderWidth     =   2
  87.       Height          =   996
  88.       Left            =   1704
  89.       Top             =   336
  90.       Width           =   1188
  91.    End
  92.    Begin VB.Image Image1 
  93.       Appearance      =   0  'Flat
  94.       Height          =   480
  95.       Index           =   2
  96.       Left            =   3285
  97.       Picture         =   "FRMHOWTO.frx":0000
  98.       Top             =   840
  99.       Width           =   480
  100.    End
  101.    Begin VB.Image Image1 
  102.       Appearance      =   0  'Flat
  103.       Height          =   480
  104.       Index           =   1
  105.       Left            =   3285
  106.       Picture         =   "FRMHOWTO.frx":030A
  107.       Top             =   405
  108.       Width           =   480
  109.    End
  110.    Begin VB.Image Image1 
  111.       Appearance      =   0  'Flat
  112.       Height          =   480
  113.       Index           =   0
  114.       Left            =   2040
  115.       Picture         =   "FRMHOWTO.frx":0614
  116.       Top             =   630
  117.       Width           =   480
  118.    End
  119. Attribute VB_Name = "frmHowTo"
  120. Attribute VB_Creatable = False
  121. Attribute VB_Exposed = False
  122. Option Explicit
  123. Private Sub cmdOK_Click()
  124. Unload Me
  125. End Sub
  126.